home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / comm / mail / Mutt089src.lha / Mutt-0.89i-AMIGA / src / send.h < prev    next >
C/C++ Source or Header  |  1998-01-28  |  2KB  |  46 lines

  1. /*
  2.  * Copyright (C) 1996-8 Michael R. Elkins <me@cs.hmc.edu>
  3.  * 
  4.  *     This program is free software; you can redistribute it and/or modify
  5.  *     it under the terms of the GNU General Public License as published by
  6.  *     the Free Software Foundation; either version 2 of the License, or
  7.  *     (at your option) any later version.
  8.  * 
  9.  *     This program is distributed in the hope that it will be useful,
  10.  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  *     GNU General Public License for more details.
  13.  * 
  14.  *     You should have received a copy of the GNU General Public License
  15.  *     along with this program; if not, write to the Free Software
  16.  *     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  */ 
  18.  
  19. ADDRESS *mutt_default_from (void);
  20. ADDRESS *mutt_remove_duplicates (ADDRESS *);
  21.  
  22. BODY *mutt_make_attach (const char *);
  23. BODY *mutt_make_multipart (BODY *);
  24.  
  25. char *mutt_generate_boundary (void);
  26.  
  27. void mutt_edit_file (const char *, const char *);
  28. void mutt_edit_headers (const char *, const char *, HEADER *, char *, size_t);
  29. /* void mutt_set_encoding (BODY *a, CONTENT *info); */
  30. void mutt_update_encoding (BODY *a);
  31.  
  32. int mutt_builtin_editor (const char *, HEADER *, HEADER *);
  33. int mutt_get_postponed (HEADER *, HEADER **);
  34. int mutt_send_menu (HEADER *, char *, size_t, HEADER *);
  35. int mutt_send_message (HEADER *, const char *);
  36. int mutt_write_fcc (const char *path, HEADER *hdr, const char *msgid, int);
  37. int mutt_write_mime_body (BODY *, FILE *);
  38. int mutt_write_mime_header (BODY *, FILE *);
  39. int mutt_write_rfc822_header (FILE *, ENVELOPE *, BODY *, int);
  40.  
  41. #ifdef _PGPPATH
  42. BODY *pgp_sign_message (BODY *);
  43. BODY *pgp_encrypt_message (BODY *, char *, int);
  44. char *pgp_findKeys (ADDRESS *, ADDRESS *, ADDRESS *);
  45. #endif
  46.